Russian problems

------

Problem 46

Find all possible integer solutions for sqrt(x + sqrt(x ... (x + sqrt(x)) ... )) = y, where there are 1998 square roots.

 

Solution

Let s1 = sqrt(x), s2 = sqrt(x + s1), s3 = sqrt(x + s2) and so on. So the equation given is y = s1998. We show first that all sn must be integral for 1 <= n <= 1998. y is integral, so s1998 is integral. Now suppose sn is integral. Then sn-1 = sn2 - x is integral, proving the claim.

So in particular s1 and s2 are integers and s22 = s12 + s1. But if s1 > 0, then s12 < s12 + s1 < (s1 + 1)2, which is impossible. Similarly s1 < 0 is impossible. So the only possible solution is s1 = 0 and hence x = 0 and y = 0.

 

Russian 41-50

(C) John Scholes
jscholes@kalva.demon.co.uk
23 Sep 1998